c089f3e128e1d781572eddb97d0ea6e6f9d23dc7,src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/SubscriberSampler.java,SubscriberSampler,sampleWithReceive,#,193

Before Change


			this.initReceiveClient();
			this.SUBSCRIBER.start();
		}
		int loop = this.getIterationCount();
		this.SUBSCRIBER.setLoop(loop);
		
		this.SUBSCRIBER.resume();

After Change


			this.initReceiveClient();
			this.SUBSCRIBER.start();
		}
		this.loop = this.getIterationCount();
		this.SUBSCRIBER.setLoop(this.loop);
		
		result.sampleStart();